Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

1234567891011
  1. 'use client'
  2. import React from 'react'
  3. import EmbeddedChatbot from '@/app/components/base/chat/embedded-chatbot'
  4. const Chatbot = () => {
  5. return (
  6. <EmbeddedChatbot />
  7. )
  8. }
  9. export default React.memo(Chatbot)